-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: React 19 Upgrade #2363
base: next
Are you sure you want to change the base?
Feat: React 19 Upgrade #2363
Conversation
feat: Bumped deps and refactored usages of forwardRef
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
👀 |
@joshuaellis apologies for reaching out directly, but if you have some time, could you please take a look at this PR? We'd really appreciate your review when it’s convenient for you. Thanks a lot! |
Is @joshuaellis the only person who can review this? Would be great to get this in and not have it end up like the other attempt at upgrading to React 19 |
Yeah... I was hoping that the fact this PR passed all the tests would mean it'd get reviewed sooner rather than later. At this rate someone may as well fork this library fully and re-distribute it. Shambolic from the maintainers if I'm honest |
Hey, firstly – sorry I recently started a family & I also have a FT job so unfortunately, open-source software is taking a back seat. Secondly, thanks for the PR! Here's some follow up questions:
Also, some other things i think we're missing from this is:
Otherwise, this looks super promising! |
Appreciate the reply, great to hear from you. Congratulations on the family news! I'd be happy to test out those changes regarding older version of React once I get the opportunity. The context change is breaking due to the nature of changing the Provider to be separate from the instantiated context itself. It follows the Context Provider pattern; Here's an article around it - I find it to be way better for DX. If you'd prefer it to remain as it was previously, it may involve a bit more in-depth tinkering due to the type errors generated from the current approach. I'm not torn on either approach - As long as the resulting code is readable and maintainable for future development. I can take a look at refactoring the types and structure to potentially allow for a single object to safely contain all the necessary functionality. In terms of my comment about the maintenance of this project, it's more targeted to the complete lack of communication towards the community. The main issue attached to this PR has hundreds of people waiting for this change, after you had mentioned about updating it in December. Granted I appreciate your new family changes meant you were not available, but I do think that the lack of communication severely impacted this whole process. As I was forced to make this change due to a work dependancy on a 1st party library, I cannot guarantee that I'll have time to look at this in the short term. I'll do my best. Hopefully I can have time next week to delve deeper into the good points you mentioned. I'll try to keep this PR up to date with that |
tbf i'm kind of happy to remove it, I don't think anyone uses it. Also it breaks everything in RCS for imo not a lot of gain...
sounds good! ✨ |
Just had a read through some other known React 19 OSS projects - They seem to be using |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, just a quick first pass. I stopped on the forwardRef as it has already a big impact. Tell me your though.
@@ -10,7 +10,6 @@ import { MenuDocs } from '../Menu/MenuDocs' | |||
|
|||
import { NavigationSchema } from '../../../scripts/docs/navigation' | |||
import { SiteThemePicker } from '../Site/SiteThemePicker' | |||
import { forwardRef } from 'react' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
breaking change: this may break react version < 19.
According to the react doc, forwardRef is still supported until further notice. We should keep it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep agreed - I plan to revert these forwardRef changes when I can!
@@ -95,8 +95,8 @@ | |||
"mock-raf": "npm:@react-spring/[email protected]", | |||
"prettier": "3.4.2", | |||
"pretty-quick": "4.0.0", | |||
"react": "18.3.1", | |||
"react-dom": "18.3.1", | |||
"react": "19.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deps: is locking to 19.0.0 not to restrictive? What about accepting at least patch or even minor version offset? (same question for the type)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was mainly following the previous setup - As it was locked to that specific React 18 version, happy to change it though
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ho my bad, I did not see it was a dev dependencies.
However, all the packages' peerDependencies are needed to be updated to React 19 (I assume ^19.0.0 ?)
Why
Closing #2341
What
Main changes:
forwardRef
- As per the React docs, will be fully deprecated in future.ref
fields with the valid React Types - Any polymorphic components were set asany
for theRefObject
generic.useRef
which were missing inits.SpringContext
to resemble a more sensible Context structureChecklist
ref
fieldsuseRef
Additional Comments
This was based on this PR: #2349
As the PR and issue have been open for a good while now, it's obvious that no further development was going to happen - I'm currently blocked by this library, so I thought it'd try and help with moving this forward.
PR Diff
I'm unsure as to why the diff is heavily focused on formatting changes - I was sure to run prettier via the NPM script before submitting this PR. Happy to outline all the direct code changes if necessary.